home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
cenvid
/
primes.bat
< prev
next >
Wrap
DOS Batch File
|
1994-10-06
|
842b
|
27 lines
@echo off
REM **********************************************************************
REM *** Primes.bat - Print out prime numbers until a key is pressed or ***
REM *** ver.1 we run out of memory or overflow ***
REM **********************************************************************
CEnviD %0.bat
GOTO CENVI_EXIT
printf("Printing prime numbers until a key pressed (or failure):\n")
for ( Count = 0, Try = 2; !kbhit(); Try++ ) {
// check if this is divisible by any of the primes found so far
for ( i = 0; i < Count; i++ )
if !(Try % Prime[i])
break
if ( i == Count )
// this new prime number was found, and so add to the list and print it
printf("%d\t",Prime[Count++]=Try)
}
// flush the keyboard
while( kbhit() ) getch()
printf("\n")
:CENVI_EXIT